home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / games_d / rtanksrc.zip / HOST.H < prev    next >
Text File  |  1989-02-26  |  606b  |  30 lines

  1. #define   PLAYER struct player_type
  2. #define p_PLAYER PLAYER *
  3.  
  4. #define TGRASS   1
  5. #define TSWAMP   2
  6. #define TWOODS   3
  7. #define TVILLAGE 4
  8.  
  9. #define ALLOUT 0
  10. #define TEAMA  1
  11. #define TEAMB  2
  12.  
  13. PLAYER {
  14.    char    tankname[10];
  15.    int     chassisType;
  16.    int     weaponsType[10];
  17.    int     extrasType[10];
  18.    int     tank_handle;
  19.    BOOL    active;
  20.    BOOL    inbattle;
  21.    int     dteam;
  22. };
  23.  
  24. void host_battle(void);
  25. void check_for_hits(void);
  26. void conclude_battle(void);
  27. void note_error(char *s);
  28. void load_battle_specs(void);
  29. void register_bgi(void);
  30. void show_error(char *s);